home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
exer
/
chap1
/
exer0111
/
Forest.java
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
1997-04-19
|
184 b
|
9 lines
import Flora.Tree;
public class Forest {
public static void main(String[] args) {
Tree t = new Tree();
System.out.println("The tree's age is " + t.age);
}
}